home *** CD-ROM | disk | FTP | other *** search
/ NeXT Education Software Sampler 1992 Fall / NeXT Education Software Sampler 1992 Fall.iso / Programming / c-runtime / tests / SubClass5.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-08-18  |  263 b   |  29 lines

  1. /* -*-objc-*- */
  2.  
  3. /* 
  4.   $Header$
  5.   $Author: dglattin $
  6.   $Date$
  7.   $Log$
  8.  */
  9.  
  10. #ifndef __SUBCLASS5_H
  11. #define __SUBCLASS5_H
  12.  
  13.  
  14. #include  <SubClass1.h>
  15.  
  16. @interface SubClass5 : SubClass1 {
  17.  
  18.   char  dumber[ 17 ];
  19. }
  20.  
  21. + ( int )return12;
  22. - ( int )return15;
  23.  
  24.  
  25. @end
  26.  
  27. #endif
  28.  
  29.